summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/convert_d32f_to_abgr8.frag
blob: b7012a61d604d272c5179e1af9132a677fea0310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#version 450

layout(binding = 0) uniform sampler2D depth_tex;

layout(location = 0) out vec4 color;

void main() {
    ivec2 coord = ivec2(gl_FragCoord.xy);
    float depth = textureLod(depth_tex, coord, 0).r;
    color = vec4(vec3(depth), 1.0); // Convert depth to grayscale color
}